home *** CD-ROM | disk | FTP | other *** search
/ The Best of Select: Multimedia 20 / The Best of Select: Multimedia 20.iso / readers / autowise / go.bat < prev    next >
DOS Batch File  |  1997-04-15  |  2KB  |  122 lines

  1. @echo off
  2. cls
  3. echo Checking hardware...
  4.  
  5. :checkdos
  6. dir c:\dos /b /-l /-p /-w /a /-s | find "CHOICE.COM" > nul
  7. if errorlevel 1 goto dostoolow
  8.  
  9. :checkansi
  10. mem /c | find "ANSI" > nul
  11. if errorlevel 1 goto ansinotdetected
  12.  
  13. :checkvga
  14. mode con columns=80 lines=50
  15. if errorlevel 1 goto vganotdetected
  16.  
  17. :mainmenu
  18. mode con columns=80 lines=50
  19. echo Autowise-menu V1.1
  20. echo Programmed by Strobodroid of Autowise Productions
  21. echo From HOLLAND!B
  22. echo Main menu
  23. echo ---------
  24. echo [1] Information on Autowise Productions (AUTOWISE.ANS)
  25. echo [2] View drawings with SVGA
  26. echo [3] Play modules with Scream Tracker
  27. echo [4] View texts with LIST
  28. echo [5] Run programs with QBASIC
  29. echo [6] Exit menuB
  30. choice /c123456 /n Your choice?
  31. if errorlevel 6 goto end
  32. if errorlevel 5 goto programs
  33. if errorlevel 4 goto text
  34. if errorlevel 3 goto modules
  35. if errorlevel 2 goto drawings
  36.  
  37. :info
  38. echo 
  39. type autowise.ans | more
  40. pause
  41. goto mainmenu
  42.  
  43. :drawings
  44. svga /a /r /4
  45. goto mainmenu
  46.  
  47. :modules
  48. st3 -x
  49. goto mainmenu
  50.  
  51. :text
  52. list /w-
  53. goto mainmenu
  54.  
  55. :programs
  56. qbasic
  57. goto mainmenu
  58.  
  59. :dostoolow
  60. echo I can understand that some people don't have Win95 for practical reasons,
  61. echo but we all should at least have DOS 6.0 :O)
  62. goto errorend
  63.  
  64. :vganotdetected
  65. echo We can't all afford a Pentium but VGA would be nice, now wouldn't it? :O)
  66. goto errorend
  67.  
  68. :ansinotdetected
  69. cls
  70. echo Autowise-menu V1.1
  71. echo Programmed by Strobodroid of Autowise Productions
  72. echo From HOLLAND!
  73.  
  74. echo Monochrome mode (Load ANSI.SYS if you are bored by living in darkness :O)
  75.  
  76. echo Main menu
  77. echo ---------
  78. echo [1] Information on Autowise Productions (AUTOWISE.TXT)
  79. echo [2] View drawings with SVGA
  80. echo [3] Play modules with Scream Tracker
  81. echo [4] View texts with LIST
  82. echo [5] Run programs with QBASIC
  83. echo [6] Exit menu
  84.  
  85. choice /c123456 /n Your choice?
  86. if errorlevel 6 goto successend
  87. if errorlevel 5 goto program2
  88. if errorlevel 4 goto text2
  89. if errorlevel 3 goto modules2
  90. if errorlevel 2 goto drawing2
  91.  
  92. :noansiinfo
  93. list autowise.txt
  94. goto ansinotdetected
  95.  
  96. :drawing2
  97. svga /a /r /4
  98. goto ansinotdetected
  99.  
  100. :modules2
  101. st3 -x
  102. goto ansinotdetected
  103.  
  104. :text2
  105. list /w-
  106. goto ansinotdetected
  107.  
  108. :program2
  109. qbasic
  110. goto ansinotdetected
  111.  
  112. :end
  113. echo 
  114. goto successend
  115.  
  116. :errorend
  117. pause
  118.  
  119. :successend
  120. @cd \
  121. @menu
  122.